home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Gfx / Show / SuperView / SuperViewLibrary / Bonus / PCD-SVObject / Install_PCD.script < prev    next >
Text File  |  1995-08-02  |  1KB  |  68 lines

  1. ; $VER: Install_PCDObject.script V2.4 (16.7.95)
  2. ; © 1994 by Andreas R. Kleinert.
  3. ; This is the Installer Script for my PCD-SVObject
  4.  
  5. (set MC68x (database "cpu"))
  6.  
  7. (set svlibdir
  8.             (askdir
  9.                    (prompt "Library Path")
  10.                    (help @askdir-help)
  11.                    (newpath)
  12.                    (default "LIBS:")
  13.             )
  14. )
  15.  
  16. (makedir (tackon svlibdir "svobjects"))
  17.  
  18. (copyfiles
  19.   (prompt "Installing PCD.svobject to LIBS:svobjects ...")
  20.   (help @copyfiles-help)
  21.   (source "libs/svobjects")
  22.   (dest (tackon svlibdir "svobjects"))
  23.   (pattern "#?.svobject")
  24.   (files)
  25. )
  26.  
  27. (if (>= MC68x 68020)
  28.   (copyfiles
  29.     (prompt "Installing special 68020+ version PCD.svobject...")
  30.     (help @copyfiles-help)
  31.     (source "libs/68030")
  32.     (dest (tackon svlibdir "svobjects"))
  33.     (all)
  34.   )
  35. )
  36.  
  37. (if (>= MC68x 68040)
  38.   (copyfiles
  39.     (prompt "Installing special 68040+ version PCD.svobject...")
  40.     (help @copyfiles-help)
  41.     (source "libs/68040")
  42.     (dest (tackon svlibdir "svobjects"))
  43.     (all)
  44.   )
  45. )
  46.  
  47. (makedir "ENV:superview-Library")
  48.  
  49. (copyfiles
  50.   (prompt "Installing ControlPad to ENV: ...")
  51.   (help @copyfiles-help)
  52.   (source "env/superview-Library")
  53.   (dest "ENV:superview-Library")
  54.   (pattern "#?")
  55.   (files)
  56. )
  57.  
  58. (makedir "ENVARC:superview-Library")
  59.  
  60. (copyfiles
  61.   (prompt "Installing ControlPad to ENVARC: ...")
  62.   (help @copyfiles-help)
  63.   (source "env/superview-Library")
  64.   (dest "ENVARC:superview-Library")
  65.   (pattern "#?")
  66.   (files)
  67. )
  68.